Delete Destination
Route
/v2/streaming/destinations/{destination_id}
Description
Delete a streaming destination. This operation permanently removes the destination and cannot be undone. Active streams to this destination will be stopped.
Method
DELETE
Inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
destination_id | string | Yes | Unique identifier of the destination to delete |
Path Parameters
- destination_id: The unique identifier of the destination (provided in the URL path)
Request Example
DELETE /v2/streaming/destinations/dest-123
Output
| Field | Type | Description |
|---|---|---|
deleted | boolean | Confirmation that the destination was deleted |
destination_id | string | ID of the deleted destination |
Rate Limit
- 60 requests per minute per API key
- 5 concurrent requests per endpoint
Example Response
{
"deleted": true,
"destination_id": "dest-123"
}
Usage Notes
- Deleting a destination will stop all active streams to that destination
- This operation cannot be undone
- Consider pausing streams before deletion to avoid data loss